Homework 4

set work space and install dependent package.


setwd(getwd())

library(rpart)  #classification and regression trees
library(rpart.plot)

Part 2.1-a


df.test <- read.csv(file = "/media/eric/Data/IIT/CS422/cs422_hw/assignment4-Xingli-Li/adult-test.csv", encoding = "UTF-8")
df.train <- read.csv(file = "/media/eric/Data/IIT/CS422/cs422_hw/assignment4-Xingli-Li/adult-train.csv", encoding = "UTF-8")

NROW(df.test)
[1] 16281
NROW(df.train)
[1] 32560
typeof(df.test)
[1] "list"
col.names <- names(df.test)

print(col.names)
 [1] "age"            "workclass"      "fnlwgt"         "education"      "education_num"  "marital_status" "occupation"     "relationship"   "race"           "sex"           
[11] "capital_gain"   "capital_loss"   "hours_per_week" "native_country" "income"        
for (col in col.names) {
  if (sum(df.test[col] == "?") > 0) {
    # The column contain '?' in test data set.
    print(paste("the column '", col, "' in test data"))
  }
  if (sum(df.train[col] == "?") > 0) {
    # The column contain '?' in train data set.
    print(paste("the column '", col, "' in train data"))
    df.train[-which(df.train[col] == '?'),]
  }
}
[1] "the column ' workclass ' in test data"
[1] "the column ' workclass ' in train data"
[1] "the column ' occupation ' in test data"
[1] "the column ' occupation ' in train data"
[1] "the column ' native_country ' in test data"
[1] "the column ' native_country ' in train data"
df.test.cleaned <- df.test[-which(df.test['workclass'] == '?'
                                   |
                                   df.test['occupation'] == '?'
                                   |
                                   df.test['native_country'] == '?'),]
NROW(df.test.cleaned)
[1] 15060
df.train.cleaned <- df.train[-which(df.train['workclass'] == '?'
                                   |
                                   df.train['occupation'] == '?'
                                   |
                                   df.train['native_country'] == '?'),]
NROW(df.train.cleaned)
[1] 30161
df.test.cleaned <- data.frame(df.test.cleaned[,1:14],
                              income=ifelse(df.test.cleaned$income=="<=50K",0, 1))

df.train.cleaned <- data.frame(df.train.cleaned[,1:14],
                               income=ifelse(df.train.cleaned$income=="<=50K",0, 1))

Part 2.1-b-i



my_tree <- rpart(income ~ ., data = df.train.cleaned, method="class")

printcp(my_tree)

Classification tree:
rpart(formula = income ~ ., data = df.train.cleaned, method = "class")

Variables actually used in tree construction:
[1] capital_gain education    relationship

Root node error: 7508/30161 = 0.24893

n= 30161 

        CP nsplit rel error  xerror      xstd
1 0.129995      0   1.00000 1.00000 0.0100018
2 0.064198      2   0.74001 0.74001 0.0089670
3 0.037294      3   0.67581 0.67581 0.0086527
4 0.010000      4   0.63852 0.63852 0.0084574
summary(my_tree)
Call:
rpart(formula = income ~ ., data = df.train.cleaned, method = "class")
  n= 30161 

          CP nsplit rel error    xerror        xstd
1 0.12999467      0 1.0000000 1.0000000 0.010001793
2 0.06419819      2 0.7400107 0.7400107 0.008966969
3 0.03729355      3 0.6758125 0.6758125 0.008652716
4 0.01000000      4 0.6385189 0.6385189 0.008457392

Variable importance
  relationship marital_status   capital_gain      education  education_num            sex     occupation            age hours_per_week 
            24             23             10              9              9              8              7              5              3 

Node number 1: 30161 observations,    complexity param=0.1299947
  predicted class=0  expected loss=0.2489307  P(node) =1
    class counts: 22653  7508
   probabilities: 0.751 0.249 
  left son=2 (16292 obs) right son=3 (13869 obs)
  Primary splits:
      relationship   splits as  RLLLLR, improve=2277.164, (0 missing)
      marital_status splits as  LRRLLLL, improve=2244.398, (0 missing)
      capital_gain   < 5119   to the left,  improve=1540.825, (0 missing)
      education      splits as  LLLLLLLLLRRLRLRL, improve=1193.769, (0 missing)
      education_num  < 12.5   to the left,  improve=1193.769, (0 missing)
  Surrogate splits:
      marital_status splits as  LRRLLLL, agree=0.993, adj=0.984, (0 split)
      sex            splits as  LR, agree=0.691, adj=0.328, (0 split)
      age            < 33.5   to the left,  agree=0.645, adj=0.229, (0 split)
      occupation     splits as  LLRRRLLLLRRLLR, agree=0.620, adj=0.175, (0 split)
      hours_per_week < 43.5   to the left,  agree=0.604, adj=0.138, (0 split)

Node number 2: 16292 observations,    complexity param=0.03729355
  predicted class=0  expected loss=0.06966609  P(node) =0.5401678
    class counts: 15157  1135
   probabilities: 0.930 0.070 
  left son=4 (15992 obs) right son=5 (300 obs)
  Primary splits:
      capital_gain   < 7073.5 to the left,  improve=491.8224, (0 missing)
      education      splits as  LLLLLLLLLLRLRLRL, improve=142.9961, (0 missing)
      education_num  < 13.5   to the left,  improve=142.9961, (0 missing)
      occupation     splits as  LLLRLLLLLRRLLL, improve=117.0150, (0 missing)
      hours_per_week < 42.5   to the left,  improve=107.9941, (0 missing)

Node number 3: 13869 observations,    complexity param=0.1299947
  predicted class=0  expected loss=0.459514  P(node) =0.4598322
    class counts:  7496  6373
   probabilities: 0.540 0.460 
  left son=6 (9719 obs) right son=7 (4150 obs)
  Primary splits:
      education     splits as  LLLLLLLLLRRLRLRL, improve=900.0575, (0 missing)
      education_num < 12.5   to the left,  improve=900.0575, (0 missing)
      occupation    splits as  LRLRLLLLLRRRRL, improve=841.3999, (0 missing)
      capital_gain  < 5095.5 to the left,  improve=698.6333, (0 missing)
      capital_loss  < 1782.5 to the left,  improve=240.6928, (0 missing)
  Surrogate splits:
      education_num  < 12.5   to the left,  agree=1.000, adj=1.000, (0 split)
      occupation     splits as  LLLRLLLLLRLLLL, agree=0.792, adj=0.306, (0 split)
      capital_gain   < 7493   to the left,  agree=0.717, adj=0.054, (0 split)
      native_country splits as  LLRLLLLLRRLLLLRLLRRLLLRLLLLLRLLLLRRLLLLL, agree=0.709, adj=0.027, (0 split)
      capital_loss   < 1894.5 to the left,  agree=0.706, adj=0.018, (0 split)

Node number 4: 15992 observations
  predicted class=0  expected loss=0.05283892  P(node) =0.5302211
    class counts: 15147   845
   probabilities: 0.947 0.053 

Node number 5: 300 observations
  predicted class=1  expected loss=0.03333333  P(node) =0.00994662
    class counts:    10   290
   probabilities: 0.033 0.967 

Node number 6: 9719 observations,    complexity param=0.06419819
  predicted class=0  expected loss=0.3418047  P(node) =0.3222373
    class counts:  6397  3322
   probabilities: 0.658 0.342 
  left son=12 (9219 obs) right son=13 (500 obs)
  Primary splits:
      capital_gain  < 5095.5 to the left,  improve=432.0786, (0 missing)
      occupation    splits as  RLLRLLLLLRRRRL, improve=230.8277, (0 missing)
      education     splits as  LLLLLLLRR--R-L-R, improve=164.3625, (0 missing)
      education_num < 8.5    to the left,  improve=164.3625, (0 missing)
      age           < 35.5   to the left,  improve=131.1760, (0 missing)

Node number 7: 4150 observations
  predicted class=1  expected loss=0.2648193  P(node) =0.1375949
    class counts:  1099  3051
   probabilities: 0.265 0.735 

Node number 12: 9219 observations
  predicted class=0  expected loss=0.3070832  P(node) =0.3056596
    class counts:  6388  2831
   probabilities: 0.693 0.307 

Node number 13: 500 observations
  predicted class=1  expected loss=0.018  P(node) =0.0165777
    class counts:     9   491
   probabilities: 0.018 0.982 
plotcp(my_tree)

# Drawing decision classification tree
rpart.plot(my_tree, extra=104, fallen.leaves=T, type=4,
           main="Decision Tree") 


library(partykit) #treeplots
# plot method of the partykit package.
plot(as.party(my_tree))

"capital_gain education relationship"

Part 2.1-b-ii

The first split is done on "relationship" predictor.

the predicted class of the first node is "<=50k".

the distribution of observations at first node is:
observations: <=50K   >50K
class counts: 22653   7508
probabilities: 0.751  0.249

Part 2.1-c-i

#install.package(caret)
library(caret)

X <- df.test.cleaned[,1:14]
y <- df.test.cleaned$income

# predict the test dataset
y_hat <- predict(my_tree, newdata = X,type = "class")

confusMatrix <-table(y, y_hat)
print(confusMatrix)
   y_hat
y       0     1
  0 10772   588
  1  1837  1863
sprintf(paste("recall: ",round(recall(confusMatrix), digit = 3)))
[1] "recall:  0.854"
print(paste("precision:",round(precision(confusMatrix), digit = 3)))
[1] "precision: 0.948"
print(paste("F1 value:",round(F_meas(confusMatrix), digit = 3)))
[1] "F1 value: 0.899"
print(paste("sensitivity:",round(sensitivity(confusMatrix), digit = 3)))
[1] "sensitivity: 0.854"
print(paste("specificity:",round(specificity(confusMatrix), digit = 3)))
[1] "specificity: 0.76"
balanced_accuracy = mean( c(sensitivity(confusMatrix),specificity(confusMatrix)))

print(paste("balanced_accuracy:",round(balanced_accuracy, digit = 3) ))
[1] "balanced_accuracy: 0.807"

Part 2.1-c-ii


# Balanced error rate = 1.0 – balanced accuracy
balanced_error_rate <- 1.0 - balanced_accuracy
print(paste("balanced error rate:",round(balanced_error_rate,digits = 3)))
[1] "balanced error rate: 0.193"
# what?

Part 2.1-c-iii



# what? sensitivity ,specificity

# sensitivity: The true positive rate is the sensitivity

# specificity: The false positive rate is 1-specificity

Part 2.1-c-iv

pre <- predict(my_tree, newdata = X,type = "class")
# 将预测概率prob和实际结果y放在一个数据框中
data <- data.frame(prob=pre,obs=y)
# 按预测概率从低到高排序
data <- data[order(data$prob),]
n <- nrow(data)
tpr <- fpr <- rep(0,n)
# 根据不同的临界值threshold来计算TPR和FPR,之后绘制成图
for (i in 1:n) {
    threshold <- data$prob[i]
    tp <- sum(data$prob > threshold & data$obs == 1)
    fp <- sum(data$prob > threshold & data$obs == 0)
    tn <- sum(data$prob < threshold & data$obs == 0)
    fn <- sum(data$prob < threshold & data$obs == 1)
    tpr[i] <- tp/(tp+fn) # 真正率
    fpr[i] <- fp/(tn+fp) # 假正率
}
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
  ‘<’ not meaningful for factors
plot(fpr,tpr,type='l')
Warning in min(x) : min里所有的参数都不存在; 回覆Inf
Warning in max(x) : max里所有的参数都不存在;回覆-Inf
Warning in min(x) : min里所有的参数都不存在; 回覆Inf
Warning in max(x) : max里所有的参数都不存在;回覆-Inf
Error in plot.window(...) : 'xlim'值不能是无限的

Part 2.1-d


# 复杂度分析

Part 2.1-e-i

set.seed(1122)

Part 2.1-e-ii


sample()

Part 2.1-e-iii-i


# Training and fitting, confusematrix

Part 2.1-e-iii-ii

Part 2.1-e-iii-iii

Part 2.1-e-iii-iv

Part 2.1-f

LS0tCnRpdGxlOiAiQ1MgNDIyIEhvbWV3b3JrIDQiCmF1dGhvcjogIlhpbmdsaSBMaSIKb3V0cHV0OgogIGh0bWxfbm90ZWJvb2s6CiAgICB0b2M6IHllcwogICAgdG9jX2Zsb2F0OiB5ZXMKICBodG1sX2RvY3VtZW50OgogICAgdG9jOiB5ZXMKICAgIGRmX3ByaW50OiBwYWdlZAotLS0KCiMjIEhvbWV3b3JrIDQKCnNldCB3b3JrIHNwYWNlIGFuZCBpbnN0YWxsIGRlcGVuZGVudCBwYWNrYWdlLgoKYGBge3J9CgpzZXR3ZChnZXR3ZCgpKQoKbGlicmFyeShycGFydCkgICNjbGFzc2lmaWNhdGlvbiBhbmQgcmVncmVzc2lvbiB0cmVlcwpsaWJyYXJ5KHJwYXJ0LnBsb3QpCmBgYAoKIyMjIFBhcnQgMi4xLWEKCmBgYHtyfQoKZGYudGVzdCA8LSByZWFkLmNzdihmaWxlID0gIi9tZWRpYS9lcmljL0RhdGEvSUlUL0NTNDIyL2NzNDIyX2h3L2Fzc2lnbm1lbnQ0LVhpbmdsaS1MaS9hZHVsdC10ZXN0LmNzdiIsIGVuY29kaW5nID0gIlVURi04IikKZGYudHJhaW4gPC0gcmVhZC5jc3YoZmlsZSA9ICIvbWVkaWEvZXJpYy9EYXRhL0lJVC9DUzQyMi9jczQyMl9ody9hc3NpZ25tZW50NC1YaW5nbGktTGkvYWR1bHQtdHJhaW4uY3N2IiwgZW5jb2RpbmcgPSAiVVRGLTgiKQoKTlJPVyhkZi50ZXN0KQpOUk9XKGRmLnRyYWluKQp0eXBlb2YoZGYudGVzdCkKY29sLm5hbWVzIDwtIG5hbWVzKGRmLnRlc3QpCgpwcmludChjb2wubmFtZXMpCgpmb3IgKGNvbCBpbiBjb2wubmFtZXMpIHsKICBpZiAoc3VtKGRmLnRlc3RbY29sXSA9PSAiPyIpID4gMCkgewogICAgIyBUaGUgY29sdW1uIGNvbnRhaW4gJz8nIGluIHRlc3QgZGF0YSBzZXQuCiAgICBwcmludChwYXN0ZSgidGhlIGNvbHVtbiAnIiwgY29sLCAiJyBpbiB0ZXN0IGRhdGEiKSkKICB9CiAgaWYgKHN1bShkZi50cmFpbltjb2xdID09ICI/IikgPiAwKSB7CiAgICAjIFRoZSBjb2x1bW4gY29udGFpbiAnPycgaW4gdHJhaW4gZGF0YSBzZXQuCiAgICBwcmludChwYXN0ZSgidGhlIGNvbHVtbiAnIiwgY29sLCAiJyBpbiB0cmFpbiBkYXRhIikpCiAgICBkZi50cmFpblstd2hpY2goZGYudHJhaW5bY29sXSA9PSAnPycpLF0KICB9Cn0KCmRmLnRlc3QuY2xlYW5lZCA8LSBkZi50ZXN0Wy13aGljaChkZi50ZXN0Wyd3b3JrY2xhc3MnXSA9PSAnPycKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB8CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZGYudGVzdFsnb2NjdXBhdGlvbiddID09ICc/JwogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHwKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBkZi50ZXN0WyduYXRpdmVfY291bnRyeSddID09ICc/JyksXQpOUk9XKGRmLnRlc3QuY2xlYW5lZCkKCmRmLnRyYWluLmNsZWFuZWQgPC0gZGYudHJhaW5bLXdoaWNoKGRmLnRyYWluWyd3b3JrY2xhc3MnXSA9PSAnPycKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB8CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZGYudHJhaW5bJ29jY3VwYXRpb24nXSA9PSAnPycKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB8CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZGYudHJhaW5bJ25hdGl2ZV9jb3VudHJ5J10gPT0gJz8nKSxdCk5ST1coZGYudHJhaW4uY2xlYW5lZCkKCmRmLnRlc3QuY2xlYW5lZCA8LSBkYXRhLmZyYW1lKGRmLnRlc3QuY2xlYW5lZFssMToxNF0sCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGluY29tZT1pZmVsc2UoZGYudGVzdC5jbGVhbmVkJGluY29tZT09Ijw9NTBLIiwwLCAxKSkKCmRmLnRyYWluLmNsZWFuZWQgPC0gZGF0YS5mcmFtZShkZi50cmFpbi5jbGVhbmVkWywxOjE0XSwKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGluY29tZT1pZmVsc2UoZGYudHJhaW4uY2xlYW5lZCRpbmNvbWU9PSI8PTUwSyIsMCwgMSkpCgpgYGAKCiMjIyBQYXJ0IDIuMS1iLWkKCmBgYHtyfQoKCm15X3RyZWUgPC0gcnBhcnQoaW5jb21lIH4gLiwgZGF0YSA9IGRmLnRyYWluLmNsZWFuZWQsIG1ldGhvZD0iY2xhc3MiKQoKcHJpbnRjcChteV90cmVlKQpzdW1tYXJ5KG15X3RyZWUpCgpwbG90Y3AobXlfdHJlZSkKIyBEcmF3aW5nIGRlY2lzaW9uIGNsYXNzaWZpY2F0aW9uIHRyZWUKcnBhcnQucGxvdChteV90cmVlLCBleHRyYT0xMDQsIGZhbGxlbi5sZWF2ZXM9VCwgdHlwZT00LAogICAgICAgICAgIG1haW49IkRlY2lzaW9uIFRyZWUiKSAKCmxpYnJhcnkocGFydHlraXQpICN0cmVlcGxvdHMKIyBwbG90IG1ldGhvZCBvZiB0aGUgcGFydHlraXQgcGFja2FnZS4KcGxvdChhcy5wYXJ0eShteV90cmVlKSkKYGBgCgogICAgImNhcGl0YWxfZ2FpbiBlZHVjYXRpb24gcmVsYXRpb25zaGlwIgoKIyMjIFBhcnQgMi4xLWItaWkKCiAgICBUaGUgZmlyc3Qgc3BsaXQgaXMgZG9uZSBvbiAicmVsYXRpb25zaGlwIiBwcmVkaWN0b3IuCgogICAgdGhlIHByZWRpY3RlZCBjbGFzcyBvZiB0aGUgZmlyc3Qgbm9kZSBpcyAiPD01MGsiLgoKICAgIHRoZSBkaXN0cmlidXRpb24gb2Ygb2JzZXJ2YXRpb25zIGF0IGZpcnN0IG5vZGUgaXM6CiAgICBvYnNlcnZhdGlvbnM6IDw9NTBLICAgPjUwSwogICAgY2xhc3MgY291bnRzOiAyMjY1MyAgIDc1MDgKICAgIHByb2JhYmlsaXRpZXM6IDAuNzUxICAwLjI0OQoKIyMjIFBhcnQgMi4xLWMtaQoKYGBge3J9CiNpbnN0YWxsLnBhY2thZ2UoY2FyZXQpCmxpYnJhcnkoY2FyZXQpCgpYIDwtIGRmLnRlc3QuY2xlYW5lZFssMToxNF0KeSA8LSBkZi50ZXN0LmNsZWFuZWQkaW5jb21lCgojIHByZWRpY3QgdGhlIHRlc3QgZGF0YXNldAp5X2hhdCA8LSBwcmVkaWN0KG15X3RyZWUsIG5ld2RhdGEgPSBYLHR5cGUgPSAiY2xhc3MiKQoKY29uZnVzZU1hdHJpeCA8LXRhYmxlKHksIHlfaGF0KQpwcmludChjb25mdXNlTWF0cml4KQoKCnNwcmludGYocGFzdGUoInJlY2FsbDogIixyb3VuZChyZWNhbGwoY29uZnVzZU1hdHJpeCksIGRpZ2l0ID0gMykpKQoKCnByaW50KHBhc3RlKCJwcmVjaXNpb246Iixyb3VuZChwcmVjaXNpb24oY29uZnVzZU1hdHJpeCksIGRpZ2l0ID0gMykpKQoKCnByaW50KHBhc3RlKCJGMSB2YWx1ZToiLHJvdW5kKEZfbWVhcyhjb25mdXNlTWF0cml4KSwgZGlnaXQgPSAzKSkpCgoKcHJpbnQocGFzdGUoInNlbnNpdGl2aXR5OiIscm91bmQoc2Vuc2l0aXZpdHkoY29uZnVzZU1hdHJpeCksIGRpZ2l0ID0gMykpKQoKCnByaW50KHBhc3RlKCJzcGVjaWZpY2l0eToiLHJvdW5kKHNwZWNpZmljaXR5KGNvbmZ1c2VNYXRyaXgpLCBkaWdpdCA9IDMpKSkKCgpiYWxhbmNlZF9hY2N1cmFjeSA9IG1lYW4oIGMoc2Vuc2l0aXZpdHkoY29uZnVzZU1hdHJpeCksc3BlY2lmaWNpdHkoY29uZnVzZU1hdHJpeCkpKQoKcHJpbnQocGFzdGUoImJhbGFuY2VkX2FjY3VyYWN5OiIscm91bmQoYmFsYW5jZWRfYWNjdXJhY3ksIGRpZ2l0ID0gMykgKSkKYGBgCgojIyMgUGFydCAyLjEtYy1paQoKYGBge3J9CgojIEJhbGFuY2VkIGVycm9yIHJhdGUgPSAxLjAg4oCTIGJhbGFuY2VkIGFjY3VyYWN5CmJhbGFuY2VkX2Vycm9yX3JhdGUgPC0gMS4wIC0gYmFsYW5jZWRfYWNjdXJhY3kKcHJpbnQocGFzdGUoImJhbGFuY2VkIGVycm9yIHJhdGU6Iixyb3VuZChiYWxhbmNlZF9lcnJvcl9yYXRlLGRpZ2l0cyA9IDMpKSkKCiMgd2hhdD8KYGBgCgojIyMgUGFydCAyLjEtYy1paWkKCmBgYHtyfQoKCiMgd2hhdD8gc2Vuc2l0aXZpdHkgLHNwZWNpZmljaXR5CgojIHNlbnNpdGl2aXR5OiBUaGUgdHJ1ZSBwb3NpdGl2ZSByYXRlIGlzIHRoZSBzZW5zaXRpdml0eQoKIyBzcGVjaWZpY2l0eTogVGhlIGZhbHNlIHBvc2l0aXZlIHJhdGUgaXMgMS1zcGVjaWZpY2l0eQpgYGAKCiMjIyBQYXJ0IDIuMS1jLWl2CgpgYGB7cn0KcHJlIDwtIHByZWRpY3QobXlfdHJlZSwgbmV3ZGF0YSA9IFgsdHlwZSA9ICJjbGFzcyIpCiMg5bCG6aKE5rWL5qaC546HcHJvYuWSjOWunumZhee7k+aenHnmlL7lnKjkuIDkuKrmlbDmja7moYbkuK0KZGF0YSA8LSBkYXRhLmZyYW1lKHByb2I9cHJlLG9icz15KQojIOaMiemihOa1i+amgueOh+S7juS9juWIsOmrmOaOkuW6jwpkYXRhIDwtIGRhdGFbb3JkZXIoZGF0YSRwcm9iKSxdCm4gPC0gbnJvdyhkYXRhKQp0cHIgPC0gZnByIDwtIHJlcCgwLG4pCiMg5qC55o2u5LiN5ZCM55qE5Li055WM5YC8dGhyZXNob2xk5p2l6K6h566XVFBS5ZKMRlBS77yM5LmL5ZCO57uY5Yi25oiQ5Zu+CmZvciAoaSBpbiAxOm4pIHsKICAgIHRocmVzaG9sZCA8LSBkYXRhJHByb2JbaV0KICAgIHRwIDwtIHN1bShkYXRhJHByb2IgPiB0aHJlc2hvbGQgJiBkYXRhJG9icyA9PSAxKQogICAgZnAgPC0gc3VtKGRhdGEkcHJvYiA+IHRocmVzaG9sZCAmIGRhdGEkb2JzID09IDApCiAgICB0biA8LSBzdW0oZGF0YSRwcm9iIDwgdGhyZXNob2xkICYgZGF0YSRvYnMgPT0gMCkKICAgIGZuIDwtIHN1bShkYXRhJHByb2IgPCB0aHJlc2hvbGQgJiBkYXRhJG9icyA9PSAxKQogICAgdHByW2ldIDwtIHRwLyh0cCtmbikgIyDnnJ/mraPnjocKICAgIGZwcltpXSA8LSBmcC8odG4rZnApICMg5YGH5q2j546HCn0KcGxvdChmcHIsdHByLHR5cGU9J2wnKQphYmxpbmUoYT0wLGI9MSkKYGBgCgojIyMgUGFydCAyLjEtZAoKYGBge3J9CgojIOWkjeadguW6puWIhuaekApgYGAKCiMjIyBQYXJ0IDIuMS1lLWkKCmBgYHtyfQpzZXQuc2VlZCgxMTIyKQpgYGAKCiMjIyBQYXJ0IDIuMS1lLWlpCgpgYGB7cn0KCnNhbXBsZSgpCmBgYAoKIyMjIFBhcnQgMi4xLWUtaWlpLWkKCmBgYHtyfQoKIyBUcmFpbmluZyBhbmQgZml0dGluZywgY29uZnVzZW1hdHJpeApgYGAKCiMjIyBQYXJ0IDIuMS1lLWlpaS1paQoKIyMjIFBhcnQgMi4xLWUtaWlpLWlpaQoKIyMjIFBhcnQgMi4xLWUtaWlpLWl2CgojIyMgUGFydCAyLjEtZgo=